home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’96 / DragClick / Sources / ShowInitIcon.h < prev    next >
Text File  |  1996-06-21  |  614b  |  23 lines

  1. #ifndef __ShowInitIcon__
  2. #define __ShowInitIcon__
  3.  
  4. #define SystemSixOrLater 1
  5.  
  6. #include <Types.h>
  7.  
  8. // Usage: pass the ID of your icon family (ICN#/icl4/icl8) to have it drawn in the right spot.
  9. // If 'advance' is true, the next INIT icon will be drawn to the right of your icon. If it is false, the next INIT icon will overwrite
  10. // yours. You can use it to create animation effects by calling ShowInitIcon several times with 'advance' set to false.
  11.  
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15.  
  16. pascal void ShowInitIcon (short iconFamilyID, Boolean advance);
  17.  
  18. #ifdef __cplusplus
  19. }
  20. #endif
  21.  
  22. #endif /* __ShowInitIcon__ */
  23.